:root {
    --primary: #52553a;
    /* accentkleur */
    --background:#433C25;
    --text: white;
    /* wit */
    --light-bg: #2a2a2a;
    /* iets lichter voor secties */
    --radius: 8px;

}


.header {
    width: 100%;
    max-width: 1000px;
    height: 90px;
    /* maximale breedte */
    display: flex;
    align-items: center;
    margin: 0 auto;
    /* centreert de header horizontaal */
    padding: 0 20px;
    /* binnenruimte */
    color: rgb(255, 255, 255);
    text-align: center;
    box-sizing: border-box;
    /* belangrijk voor padding */
    justify-content: center;
    /* horizontaal centreren */
    border: 1px solid rgb(218, 195, 153);
    position: relative;
    
}
.logo-img {
    height: 140px;
    width: auto;
    display: block;
    margin-left: 0;
    margin-top: 7px;
    margin-bottom: 7px;
    border-radius: 15px;
    transform-origin: top left;
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(2.5);
}



/* ===============================
   ALGEMENE STIJLEN
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-size: 1.0rem;

}


/* ===============================
   BODY & FLEX VOOR FOOTER
================================= */
html,
body {
    height: 100%;
    margin: 0;
    background: var(--background);
    font-size: 1.0rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* minstens schermhoogte */
}

main {
    flex: 1;
    /* main vult alle beschikbare ruimte tussen header en footer */
    overflow: visible;
}

/* ===============================
   HOME
================================= */
.home-tekst-section p,
.home-tekst2-section {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    /* afgeronde hoeken voor diepte */
     box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.65),
        0 5px 15px rgba(0, 0, 0, 0.45);
    padding: 1rem 2rem;
    backdrop-filter: blur(5px);

}


/* ===============================
   SECTIONS
================================= */
.section {
    margin: 2rem 0;
}


/* Hover effect voor extra diepte */
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}



.section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    
}
h1{
    color: rgb(252, 211, 108);

}
h2{
    color: rgb(196, 180, 140);
}
.container {
    max-width: 1100px;
    margin: auto;
}


/* ===============================
   UNIFORME SECTION (ALLES GELIJK)
================================= */
.section-uniform {
    position: relative;
    padding: 10rem 2rem;
    

    background-image: url("images/Logo Erik Batstra schets v3.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
       color: #f5f3ee;
    overflow: hidden;
    border-radius: 12px;

     box-shadow:
    0 -10px 30px rgba(0, 0, 0, 0.4),  /* schaduw boven */
    0 10px 30px rgba(0, 0, 0, 0.6),   /* schaduw onder */
    0 25px 50px rgba(0, 0, 0, 0.85),  /* bestaande diepe schaduw */
    0 12px 30px rgba(0, 0, 0, 0.65);  /* bestaande lichte schaduw */

     /* NOOIT wippen */
    overflow: visible;
    transform: none;
    transition: none;
    font-size: 1.3rem;
}

/* overlay */
.section-uniform::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(92, 85, 58, 0.85);
    z-index: 0;
}

/* content boven overlay */
.section-uniform > * {
    position: relative;
    z-index: 1;
}

/* ===============================
   BUTTONS
================================= */
.btn {
    display: inline-block;
    background: rgb(252, 211, 108);
    /* lichte overlay net als sectie */
    color: #433C25;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    /* zelfde afgeronde hoeken als secties */
    border: 1px solid rgb(218, 195, 153);
    text-decoration: none;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
    /* 3D-schaduw */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hover effect voor zweven */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.vinkje {
    color:rgb(252, 211, 108);
    /* maakt het vinkje goud */
    margin-right: 0.5rem;
    /* ruimte tussen vinkje en tekst */
}



/* ===============================
   FOOTER
================================= */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #433C25;
    margin-top: 2rem;
}
/* Container met tekst en social icons inline */
.footer-text-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* ruimte tussen tekst en icons */
    flex-wrap: wrap; /* mobielvriendelijk: tekst en icons onder elkaar op smalle schermen */
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons img {
    width: 36px;
    height: 36px;
    transition: transform 0.25s ease;
}

.social-icons a:hover img {
    transform: scale(1.3);
}

/* Partner sectie */
.partner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: white;
    flex-wrap: wrap;
}

.partner img {
    height: 100px;
    transition: transform 0.25s ease;
    border-radius: 12px;
    transform-origin: bottom right;
}

.partner a:hover img {
    transform: scale(1.5);
}

/* Mobiel */
@media (max-width: 500px) {
    .footer-text-icons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .partner span {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }
}